home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem REMIND.BAT
- rem ╔═════════════════════════════════════════════════════════════════════════╗
- rem ║ Note: The "/i:7" in the command below will trigger the reminder every ║
- rem ║ 7 days. To trigger a reminder based on the day of the week, the day of ║
- rem ║ the month, or at a different interval see the documentation file ║
- rem ║ lcg_rmnd.doc for the appropriate command line switches. ║
- rem ╚═════════════════════════════════════════════════════════════════════════╝
- rem
- lcg_rmnd /i:7
- if errorlevel 3 goto :NOBACK
- if not errorlevel 2 goto :NOBACK
- echo -------------------
- echo Beginning backup...
- rem ╔════════════════════════════════════════╗
- rem ║ INSERT YOUR DISK BACK-UP COMMANDS HERE ║
- rem ╚════════════════════════════════════════╝
- lcg_rmnd /reset
- echo -------------------
- :NOBACK
- echo Done with REMIND.BAT.
-